Finds items with keys greater than the specified value.
Assembly: C1.LiveLinq (in C1.LiveLinq.dll)
Syntax
C# |
---|
public IndexQuery<T> FindGreater( Object key, bool inclusive, Order order ) |
Visual Basic |
---|
Public Function FindGreater ( _ key As Object, _ inclusive As Boolean, _ order As Order _ ) As IndexQuery(Of T) |
Parameters
- key
- Type: System..::..Object
Minimum key value to search for.
- inclusive
- Type: System..::..Boolean
If true, the result includes items with the specified key value. Otherwise, the result only includes those with keys strictly greater than the specified value.
- order
- Type: C1.LiveLinq..::..Order
Optionally specifies the order of the key values to sort the result (Order.Unordered if sorting is not required).